home *** CD-ROM | disk | FTP | other *** search
- label1 = new Label("This is my cool SlideShow Application!",Label.CENTER);
- GridBagConstraints gbc;
- gbc = new GridBagConstraints();
- gbc.gridx = 1;
- gbc.gridy = 1;
- gbc.fill = GridBagConstraints.NONE;
- gbc.insets = new Insets(0,0,0,0);
- ((GridBagLayout)getLayout()).setConstraints(label1, gbc);
- add(label1);
-